home *** CD-ROM | disk | FTP | other *** search
Java Source | 2001-06-23 | 460 b | 21 lines |
- //
- // BasicWindowMonitor.java
- // InteractionFrame
- //
- // Created by sziegler on Tue Jun 12 2001.
- // Copyright (c) 2001 __CompanyName__. All rights reserved.
- //
-
- import java.awt.*;
- import java.awt.Window;
- import java.awt.event.*;
-
- public class BasicWindowMonitor extends WindowAdapter {
- public void windowClosing(WindowEvent e) {
- Window w = e.getWindow();
- w.setVisible(false);
- w.dispose();
- System.exit(0);
- }
- }
-